home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1994 / MacHack 1994.toast / MacHack™ 1987-1994 / MacHack™ '90 / MacHack'90 Proceedings / John Norstad / Reusable Code / Source / main.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-10  |  738 b   |  24 lines  |  [TEXT/MPS ]

  1. /*______________________________________________________________________
  2.  
  3.     main.h - Main Window Manager Interface.
  4.     
  5.     Copyright © 1988, 1989, 1990 Northwestern University.  Permission is 
  6.     granted to use this code in your own projects, provided you give credit 
  7.     to both John Norstad and Northwestern University in your about box or 
  8.     document.
  9. _____________________________________________________________________*/
  10.  
  11. #ifndef __main__
  12. #define __main__
  13.  
  14. extern void main_SetPort (void);
  15. extern void main_DoScan (short theMenu, short theItem);
  16. extern void main_WaitInsert (Boolean firstDisk, short *vRefNum, 
  17.     Boolean *canceled);
  18. extern void main_Disk (long message);
  19. extern Boolean main_Save (void);
  20. extern void main_Open (void);
  21.  
  22. #endif
  23.  
  24.